dbdf8bffc90f44405726ad4d3477fd76a0611ddd,Core/src/org/sleuthkit/autopsy/timeline/ui/detailview/EventStripeNode.java,EventStripeNode,EventStripeNode,#EventStripe#EventStripeNode#EventDetailChart#,118

Before Change



        final HBox hBox = new HBox(descrLabel, countLabel, spacer, hashIV, tagIV, minusButton, plusButton);
        if (cluster.getEventIDsWithHashHits().isEmpty()) {
            hashIV.setManaged(false);
            hashIV.setVisible(false);
        }
        if (cluster.getEventIDsWithTags().isEmpty()) {

After Change



        final HBox header = new HBox(descrLabel, countLabel, hashIV, tagIV, spacer, minusButton, plusButton);
        if (cluster.getEventIDsWithHashHits().isEmpty()) {
            show(hashIV, false);
        }
        if (cluster.getEventIDsWithTags().isEmpty()) {
            show(tagIV, false);